home *** CD-ROM | disk | FTP | other *** search
Makefile | 1991-04-15 | 493 b | 24 lines |
-
- # DMakefile for TEST: .. a dumb stupid handler that demonstrates
- # a few packet types for dos handlers.
- #
- # note: you can compile this -mRR if you also add -DREGISTERED, but
- # ONLY using the 2.0 includes (DCCOPTS is -2.0)
-
- CFLAGS= -r
- OD= dtmp:doshan/
- SRCS= main.c
- OBJS= $(SRCS:"*.c":"$(OD)*.o")
- EXE= t:dos-handler
-
- all: $(EXE)
-
- $(EXE) : $(OBJS)
- dcc $(CFLAGS) %(right) -o %(left)
- -mount test: from mountlist.local
-
- $(OBJS) : $(SRCS)
- dcc $(CFLAGS) %(right) -o %(left) -c
-
-
-